home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / comm / ums / UMS11_9_beta.lha / UMS / Doc / English / ums.config.sample < prev    next >
Text File  |  1995-06-10  |  3KB  |  125 lines

  1.  
  2. # You MUST change to following line to match your fully
  3. # qualified host name. (No "@" anymore!)
  4. ( Sysname "site.do.main" )
  5.  
  6. # Same for UUCP, SMTP, NNTP ...
  7. ( rfc.domainname $sysname )
  8. ( rfc.pathname $sysname )
  9.  
  10. # ... and for EXPORT.
  11. ( export.nodename $sysname )
  12.  
  13. # Any number of AKAs for your host's name.
  14. # One PATTERN each line, separated by a linefeed "\n".
  15. ( Aka
  16.     "*@site.do.main\n"
  17.     "site\n"
  18.     $sysname
  19. )
  20.  
  21. # Where the logfile goes.
  22. # I prefer a residentable ram-disk. In case of unexpected system
  23. # crashes it cannot corrupt the hd, but is still readable after a
  24. # reboot.
  25. ( Logfile "sd0:ums.log" )
  26.  
  27. # Loglevel must be between 1 and 9. 8 is recommended for the start.
  28. ( Loglevel 8 )
  29.  
  30. # Change this is you're runing a full-node.
  31. # Must be a pattern that matches all groups to be routed.
  32. ( NodeMode % )
  33.  
  34. # Change this as you like.
  35. ( HardFlush 300 )
  36. ( SoftFlush 5 )
  37. ( AutoFree 60 )
  38. ( AutoQuit 0 )
  39. ( Maxmsgsize 500000 )
  40. ( Options "SaveComments,ChainQuick" )
  41.  
  42. # Doesn't usually have to be changed.
  43. ( MsgId $serial "@" $sysname )
  44. ( Errorfile "con://640/100/UMS-%s-Error/AUTO/CLOSE/WAIT" )
  45. ( Headerfields "1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17" )
  46. ( Indexfields "1,3,5,8,9,10,15,16,17" )
  47. ( Hdrfill 80 )
  48. ( Txtfill 80 )
  49. ( Access "*" )
  50. ( FullAccess "()" )
  51.  
  52. # Configure to your needs.
  53. ( expire.grouplist
  54.     "#?, 14\n"
  55. )
  56. ( expire.mail 14 )
  57. ( expire.private 60 )
  58.  
  59. # At least one 'sysop' is needed. Exactly one alias 'sysop' is required.
  60. # On single-user sites you might want to use the same user for system
  61. # administration (-> 'sysop') and newsreading.
  62. # (Bigger sites should use a dedicated 'sysop' account.)
  63. ( Sysop
  64.     ( Alias
  65.         sysop
  66.         root
  67.         postmaster
  68.         john
  69.         jd
  70.         "Dr. John Doe"
  71.     )
  72.     ( READACCESS "*" )
  73.     ( WRITEACCESS "*" )
  74.     ( NETACCESS "*" )
  75.     ( IMPORT % )
  76.     ( Name "John Doe" )
  77.     ( Password "" )
  78.     ( rfc.username john )
  79. )
  80.  
  81. # And at least one Exporter is needed to connect you with the rest of
  82. # the world.
  83. ( Exporter
  84.     ( Alias
  85.         uucp.uunet
  86.         uucp.default
  87.         NNTPD
  88.     )
  89.     ( READACCESS "*" )
  90.     ( WRITEACCESS "*" )
  91.     ( NETACCESS "*" )
  92.     ( IMPORT "*" )
  93.     ( EXPORT "*" )
  94.     ( DISTRIBUTION "(%|#?,)(uucp|uunet|net|world)(,#?|%)" )
  95.     ( Name "UUCP host" )
  96.     ( Password  )
  97.     ( nntpd.access
  98.         "localhost       nntpd,Y,N\n"
  99.         "*               nntpd,N,N\n"
  100.     )
  101. )
  102.  
  103. # This is an example for a simple user with limited access.
  104. ( User
  105.     ( Alias
  106.         guest
  107.         gast
  108.     )
  109.     ( READACCESS
  110.         "amiga.#?  \n"
  111.         "comp.#?\n"
  112.         "de.#?\n"
  113.     )
  114.     ( WRITEACCESS
  115.         "amiga.#?\n"
  116.         "comp.#?\n"
  117.         "de.#?\n"
  118.     )
  119.     ( NETACCESS % )
  120.     ( IMPORT % )
  121.     ( Name "Test User" )
  122.     ( Password "guest" )
  123.     ( rfc.username guest )
  124. )
  125.